|
Enable Userdir
2016/05/10 |
|
Enable userdir, users can create websites with this setting.
|
|
| [1] | Configure httpd. |
|
root@www:~# a2enmod userdir Enabling module userdir. To activate the new configuration, you need to run: service apache2 restartroot@www:~# systemctl restart apache2 |
| [2] | Create a test page with a user and access to it from client PC with web browser. |
|
ubuntu@www:~$ mkdir ~/public_html
ubuntu@www:~$
vi ~/public_html/index.html <html> <body> <div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"> UserDir Test Page </div> </body> </html> |
|